home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue61
/
Contract
/
AccountExmpl.dpr
< prev
next >
Wrap
Text File
|
2000-08-07
|
241b
|
14 lines
program AccountExmpl;
uses
Forms,
SimpleAccountFrm in 'SimpleAccountFrm.pas' {FrmAccountTest};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TFrmAccountTest, FrmAccountTest);
Application.Run;
end.